-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix upgrade not showing when an RC is deployed #513
Conversation
Codecov Report
@@ Coverage Diff @@
## master #513 +/- ##
==========================================
+ Coverage 57.80% 57.85% +0.04%
==========================================
Files 1061 1061
Lines 34403 34418 +15
Branches 4891 4898 +7
==========================================
+ Hits 19888 19912 +24
+ Misses 14515 14506 -9 |
@@ -0,0 +1,28 @@ | |||
import { Version } from './helm-release-helper.service'; | |||
|
|||
fdescribe('HelmReleaseHelperService', () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fdescribe
@@ -224,6 +245,8 @@ export class HelmReleaseHelperService { | |||
if (c.relationships && c.relationships.latestChartVersion && c.relationships.latestChartVersion.data) { | |||
const latest = new Version(c.relationships.latestChartVersion.data.version); | |||
const current = new Version(release.chart.metadata.version); | |||
console.log(latest); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
console.log
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, will merge once passed gates
I'm going to merge this to unblock downstream merge. Unit tests have passed and the only other change is removal of logging |
Fixes #512